G02-PythagoreanTriples.mws

 

     Triplos Pitagóricos


Uma exploração dos triplos pitagóricos, repleta de exemplos desses números misteriosos e gráficos de centenas destes triplos!

[Direções : Execute primeiramente a seção Code Resource. Embora não haja nenhum output imediato, essas definições serão usadas posteriormente em outro .]

  0. Código

>    restart; with(plots):

Warning, the name changecoords has been redefined

>    SumSquares  :=  proc(n)
    local A,i,j,k;
    
    A := array( [seq( [  seq(` `, j = 1..(n+2) ) ],   i = 1..(n+2)) ]);
    A[1,1] := `Sum Squares`  ;      
    for k from 1 to n do  A[1,k+2 ] :=  k; od;
    for k from 1 to n do  A[k+2, 1] :=  k; od;
    for k from 1 to n do  A[2, k+2] :=  `__`; od;
    for k from 1 to n do  A[k+2, 2] :=  `|`; od;
 
    for i from 1 to n do  
        for j from 1 to n do  
             A[i+2,j+2] :=  i^2 + j^2 ;   od;od;
   
    print(A);
    end proc:

>    SumSquares2  :=  proc(n)
    local A,i,j,k;
    
    A := array( [seq( [  seq(` `, j = 1..(n) ) ],   i = 1..(n)) ]);
    for i from 1 to n do  
        for j from 1 to i do  
             A[i,j] :=  i^2 + j^2 ;   od;od;
   
    print(A);
    end proc:

>    PythTripTable  :=  proc(m)
    local A,i,j,k,n;
    n := m - 2;
    A := array( [seq( [  seq(` `, j = 1..(n+2) ) ],   i = 1..(n+2)) ]);
    A[1,1] := `triples`;        A[2,1] := `p`; A[1,2] := `q`;
    for k from 1 to n do  A[1,k+2] :=  k+2; od;
    for k from 1 to n do  A[k+2, 1] :=  k+2; od;
    for k from 1 to n do  A[2,k+2] :=  `__`; od;
    for k from 1 to n do  A[k+2, 2] :=  `|`; od;
 
    for i from 3 to n+2 do  
        for j from 3 to n+2 do  
           if (j>i) then A[i,j] := [j^2-i^2,2*i*j,j^2+i^2] ; fi;  od;od;
   
    print(A);
    end proc:


>    PythTrips  :=  proc(n)
    local i,j,k;
    print(` Pythagorean Triples :\n`);
    for j from 3 to n do  
        for i from 3 to j-1 do  
           print([j^2-i^2,2*i*j,j^2+i^2] );  od;od;
   
    
    end proc:

>    PythTrips  :=  proc(n)
    local i,j,A,B,g;
    print(`Some Pythagorean Triples :`);print(` `);
    for j from 3 to n do  
        for i from 3 to j-1 do
           A := [j^2-i^2,2*i*j,j^2+i^2];
           g := igcd(A[1],A[2],A[3]);
           B := A/g;
           if( g =1)
                   then print(A,`     Primitive Triple)(` );
                   else print(A,`     a multiple of  `, B );
                   fi;  od;od;
   
    
    end proc:

>    PythTripPlot  :=  proc(n)
    local i,j,k,Q,m,q,c;
    print(`Some Pythagorean Triples :`);print(` `);
    k:= 0;
    for j from 2 to n do  
           for i from 1 to j-1 do
           k := k+1;
           q := [ j^2-i^2, 2*i*j];
           c := COLOR(RGB, evalf(rand()/10^12,2)/3 + .3,
                           evalf(rand()/10^12,2)/3 + .3,
                           .8 );
           Q||k := plot( [[0,0],[q[1],0],[q[1],q[2]],[0,0]],
                         color = c, axes = none):
    od;od;             
    display( [seq(Q||j, j = 1..k)], scaling=constrained);
    end proc:

>    PythPointPlot  :=  proc(n)
    local i,j,k,Q,m,q,c;
    print(`Pythagorean Triple Vertices :`);print(` `);
   
    k:= 0;
    Q||k := pointplot([0,0], color = white, axes = boxed):
    for j from 2 to n do  
           for i from 1 to j-1 do
           k := k+1;
           q := [ j^2-i^2, 2*i*j];
           c := COLOR(RGB, evalf(rand()/10^12,2)/3 + .2,
                           evalf(rand()/10^12,2)/3 + .1,
                           .8 );
           Q||k := pointplot([q[1],q[2]],
                   color = c, axes = boxed):
    od;od;             
    display( [seq(Q||j, j = 0..k)], scaling=constrained);
    end proc:

>    PythPrimPointPlot  :=  proc(n)
    local i,j,k,Q,m,q,c,g;
    print(`Primitive Pythagorean Triple Vertices :`);print(` `);
    k:= 0;
    Q||k := pointplot([0,0], color = white, axes = boxed):
    for j from 2 to n do  
       for i from 1 to j-1 do
           q := [ j^2-i^2, 2*i*j];
           g := igcd(q[1],q[2]);
           if( g=1)then
              k := k+1;
              c := COLOR(RGB, .7,
                              evalf(rand()/10^12,2)/3 + .1,
                              evalf(rand()/10^12,2)/3 + .1 );
           Q||k := pointplot([q[1],q[2]],
                   color = c, axes = boxed, symbol = circle):
           fi;             
    od;od;             
    display( [seq(Q||j, j = 0..k)], scaling=constrained);
    end proc:

  1. Triplos Pitagóricos


Esse é o famoso teorema de Pitágoras
\

>    Pyth := a^2 + b^2 = c^2;

Pyth := a^2+b^2 = c^2


Tipicamente, se os dois catetos são inteiros, a hipotenusa é uma raíz quadrada.

>    subs( {a=1, b=2}, Pyth);
solve(%,c);

5 = c^2

-5^(1/2), 5^(1/2)

>    subs( {a=1, b=1}, Pyth);
solve(%,c);

2 = c^2

-2^(1/2), 2^(1/2)

>    subs( {a=1, b=2}, Pyth);
solve(%,c);

5 = c^2

-5^(1/2), 5^(1/2)

>    subs( {a=2, b=3}, Pyth);
solve(%,c);

13 = c^2

-13^(1/2), 13^(1/2)

>    subs( {a=4, b=6}, Pyth);
solve(%,c);

52 = c^2

-2*13^(1/2), 2*13^(1/2)


No entanto, existem vários casos onde todos os três números são inteiros. Nós chamamos trádes desse tipo de Triplos Pitagóricos
.Existe um número infinito deles.

>    subs( {a=3, b=4},  Pyth); solve(%,c);

25 = c^2

-5, 5

>    subs( {a=5, b=12}, Pyth); solve(%,c);

169 = c^2

-13, 13

>    subs( {a=7, b=24}, Pyth); solve(%,c);

625 = c^2

-25, 25

>    subs( {a=8, b=15}, Pyth); solve(%,c);

289 = c^2

-17, 17

>    subs( {a=8, b=15}, Pyth); solve(%,c);

289 = c^2

-17, 17


O mistério eão é como encontrar esses trigêmeos mágicos e quantos eles são


 

  2. Encontrando Triplos Pitagóricos


Nós podemos olhar para uma soma de quadrados - e ver se nós reconhecemos qualquer quadrado perfeito. Por exemplo, nessa tabela, existem dois intervalos de  25. Se você traçá-los novamente na coluna e na fileira eles são (3,4) e (4,3). Cada quadrado perfeito nessa tabela corresponde a um triplo pitagórico.

>    SumSquares(6);

matrix([[`Sum Squares`, ` `, 1, 2, 3, 4, 5, 6], [` `, ` `, __, __, __, __, __, __], [1, `|`, 2, 5, 10, 17, 26, 37], [2, `|`, 5, 8, 13, 20, 29, 40], [3, `|`, 10, 13, 18, 25, 34, 45], [4, `|`, 17, 20, 25...



Quantos quadrados perfeitos você contou aqui? Procure por  25, 100, 225

>    SumSquares(13);

matrix([[`Sum Squares`, ` `, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [` `, ` `, __, __, __, __, __, __, __, __, __, __, __, __, __], [1, `|`, 2, 5, 10, 17, 26, 37, 50, 65, 82, 101, 122, 145, 170], ...



Quantos mais você pode encontrar aqui? Dica : 289, 400

>    SumSquares2(17);

matrix([[2, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `], [5, 8, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `, ` `], [10, 13, 18, ` `, ` `, ` ...



Como você pode ver existem poucos casos. De fato, existe um número infinito de triplos pitagóricos. Aqui um pouco mais. Por favor teste estes e verifique se eles são triplos.

>    PythTripTable(9);

matrix([[triples, q, 3, 4, 5, 6, 7, 8, 9], [p, ` `, __, __, __, __, __, __, __], [3, `|`, ` `, [7, 24, 25], [16, 30, 34], [27, 36, 45], [40, 42, 58], [55, 48, 73], [72, 54, 90]], [4, `|`, ` `, ` `, [9,...


Um  "Triplo Pitagórico Primitivo" é um onde todos os três números são relativamente primos. É fácil gerar um número infinito

>    `Primitive Pythagorean Triple`; [5, 12, 13]; igcd( 9, 40, 41);

`Primitive Pythagorean Triple`

[5, 12, 13]

1

>    `Primitive Pythagorean Triple`; [9, 40, 41]; igcd( 9, 40, 41);

`Primitive Pythagorean Triple`

[9, 40, 41]

1

>    `Primitive Pythagorean Triple`; [111, 680, 689]; igcd( 111, 680, 689);
111^2 + 680^2 =  689^2;

`Primitive Pythagorean Triple`

[111, 680, 689]

1

474721 = 474721

>    `Non-primitive Pythagorean Triple`; [21, 28, 35]; igcd( 21, 28, 35);

`Non-primitive Pythagorean Triple`

[21, 28, 35]

7

>    `Non-primitive Pythagorean Triple`; [15, 36, 39]; igcd( 15, 36, 39 );

`Non-primitive Pythagorean Triple`

[15, 36, 39]

3

>    `Non-primitive Pythagorean Triple`; [112, 66, 130]; igcd(112, 66, 130);

`Non-primitive Pythagorean Triple`

[112, 66, 130]

2

>    `Non-primitive Pythagorean Triple`; [136, 255, 289]; igcd(136, 255, 289 );

`Non-primitive Pythagorean Triple`

[136, 255, 289]

17


Aqui está um pouco mais - observe quais são primitivos e quais não são

>    PythTrips(20);

`Some Pythagorean Triples :`

` `

[7, 24, 25], `     Primitive Triple)(`

[16, 30, 34], `     a multiple of  `, [8, 15, 17]

[9, 40, 41], `     Primitive Triple)(`

[27, 36, 45], `     a multiple of  `, [3, 4, 5]

[20, 48, 52], `     a multiple of  `, [5, 12, 13]

[11, 60, 61], `     Primitive Triple)(`

[40, 42, 58], `     a multiple of  `, [20, 21, 29]

[33, 56, 65], `     Primitive Triple)(`

[24, 70, 74], `     a multiple of  `, [12, 35, 37]

[13, 84, 85], `     Primitive Triple)(`

[55, 48, 73], `     Primitive Triple)(`

[48, 64, 80], `     a multiple of  `, [3, 4, 5]

[39, 80, 89], `     Primitive Triple)(`

[28, 96, 100], `     a multiple of  `, [7, 24, 25]

[15, 112, 113], `     Primitive Triple)(`

[72, 54, 90], `     a multiple of  `, [4, 3, 5]

[65, 72, 97], `     Primitive Triple)(`

[56, 90, 106], `     a multiple of  `, [28, 45, 53]

[45, 108, 117], `     a multiple of  `, [5, 12, 13]

[32, 126, 130], `     a multiple of  `, [16, 63, 65]

[17, 144, 145], `     Primitive Triple)(`

[91, 60, 109], `     Primitive Triple)(`

[84, 80, 116], `     a multiple of  `, [21, 20, 29]

[75, 100, 125], `     a multiple of  `, [3, 4, 5]

[64, 120, 136], `     a multiple of  `, [8, 15, 17]

[51, 140, 149], `     Primitive Triple)(`

[36, 160, 164], `     a multiple of  `, [9, 40, 41]

[19, 180, 181], `     Primitive Triple)(`

[112, 66, 130], `     a multiple of  `, [56, 33, 65]

[105, 88, 137], `     Primitive Triple)(`

[96, 110, 146], `     a multiple of  `, [48, 55, 73]

[85, 132, 157], `     Primitive Triple)(`

[72, 154, 170], `     a multiple of  `, [36, 77, 85]

[57, 176, 185], `     Primitive Triple)(`

[40, 198, 202], `     a multiple of  `, [20, 99, 101]

[21, 220, 221], `     Primitive Triple)(`

[135, 72, 153], `     a multiple of  `, [15, 8, 17]

[128, 96, 160], `     a multiple of  `, [4, 3, 5]

[119, 120, 169], `     Primitive Triple)(`

[108, 144, 180], `     a multiple of  `, [3, 4, 5]

[95, 168, 193], `     Primitive Triple)(`

[80, 192, 208], `     a multiple of  `, [5, 12, 13]

[63, 216, 225], `     a multiple of  `, [7, 24, 25]

[44, 240, 244], `     a multiple of  `, [11, 60, 61]

[23, 264, 265], `     Primitive Triple)(`

[160, 78, 178], `     a multiple of  `, [80, 39, 89]

[153, 104, 185], `     Primitive Triple)(`

[144, 130, 194], `     a multiple of  `, [72, 65, 97]

[133, 156, 205], `     Primitive Triple)(`

[120, 182, 218], `     a multiple of  `, [60, 91, 109]

[105, 208, 233], `     Primitive Triple)(`

[88, 234, 250], `     a multiple of  `, [44, 117, 125]

[69, 260, 269], `     Primitive Triple)(`

[48, 286, 290], `     a multiple of  `, [24, 143, 145]

[25, 312, 313], `     Primitive Triple)(`

[187, 84, 205], `     Primitive Triple)(`

[180, 112, 212], `     a multiple of  `, [45, 28, 53]

[171, 140, 221], `     Primitive Triple)(`

[160, 168, 232], `     a multiple of  `, [20, 21, 29]

[147, 196, 245], `     a multiple of  `, [3, 4, 5]

[132, 224, 260], `     a multiple of  `, [33, 56, 65]

[115, 252, 277], `     Primitive Triple)(`

[96, 280, 296], `     a multiple of  `, [12, 35, 37]

[75, 308, 317], `     Primitive Triple)(`

[52, 336, 340], `     a multiple of  `, [13, 84, 85]

[27, 364, 365], `     Primitive Triple)(`

[216, 90, 234], `     a multiple of  `, [12, 5, 13]

[209, 120, 241], `     Primitive Triple)(`

[200, 150, 250], `     a multiple of  `, [4, 3, 5]

[189, 180, 261], `     a multiple of  `, [21, 20, 29]

[176, 210, 274], `     a multiple of  `, [88, 105, 137]

[161, 240, 289], `     Primitive Triple)(`

[144, 270, 306], `     a multiple of  `, [8, 15, 17]

[125, 300, 325], `     a multiple of  `, [5, 12, 13]

[104, 330, 346], `     a multiple of  `, [52, 165, 173]

[81, 360, 369], `     a multiple of  `, [9, 40, 41]

[56, 390, 394], `     a multiple of  `, [28, 195, 197]

[29, 420, 421], `     Primitive Triple)(`

[247, 96, 265], `     Primitive Triple)(`

[240, 128, 272], `     a multiple of  `, [15, 8, 17]

[231, 160, 281], `     Primitive Triple)(`

[220, 192, 292], `     a multiple of  `, [55, 48, 73]

[207, 224, 305], `     Primitive Triple)(`

[192, 256, 320], `     a multiple of  `, [3, 4, 5]

[175, 288, 337], `     Primitive Triple)(`

[156, 320, 356], `     a multiple of  `, [39, 80, 89]

[135, 352, 377], `     Primitive Triple)(`

[112, 384, 400], `     a multiple of  `, [7, 24, 25]

[87, 416, 425], `     Primitive Triple)(`

[60, 448, 452], `     a multiple of  `, [15, 112, 113]

[31, 480, 481], `     Primitive Triple)(`

[280, 102, 298], `     a multiple of  `, [140, 51, 149]

[273, 136, 305], `     Primitive Triple)(`

[264, 170, 314], `     a multiple of  `, [132, 85, 157]

[253, 204, 325], `     Primitive Triple)(`

[240, 238, 338], `     a multiple of  `, [120, 119, 169]

[225, 272, 353], `     Primitive Triple)(`

[208, 306, 370], `     a multiple of  `, [104, 153, 185]

[189, 340, 389], `     Primitive Triple)(`

[168, 374, 410], `     a multiple of  `, [84, 187, 205]

[145, 408, 433], `     Primitive Triple)(`

[120, 442, 458], `     a multiple of  `, [60, 221, 229]

[93, 476, 485], `     Primitive Triple)(`

[64, 510, 514], `     a multiple of  `, [32, 255, 257]

[33, 544, 545], `     Primitive Triple)(`

[315, 108, 333], `     a multiple of  `, [35, 12, 37]

[308, 144, 340], `     a multiple of  `, [77, 36, 85]

[299, 180, 349], `     Primitive Triple)(`

[288, 216, 360], `     a multiple of  `, [4, 3, 5]

[275, 252, 373], `     Primitive Triple)(`

[260, 288, 388], `     a multiple of  `, [65, 72, 97]

[243, 324, 405], `     a multiple of  `, [3, 4, 5]

[224, 360, 424], `     a multiple of  `, [28, 45, 53]

[203, 396, 445], `     Primitive Triple)(`

[180, 432, 468], `     a multiple of  `, [5, 12, 13]

[155, 468, 493], `     Primitive Triple)(`

[128, 504, 520], `     a multiple of  `, [16, 63, 65]

[99, 540, 549], `     a multiple of  `, [11, 60, 61]

[68, 576, 580], `     a multiple of  `, [17, 144, 145]

[35, 612, 613], `     Primitive Triple)(`

[352, 114, 370], `     a multiple of  `, [176, 57, 185]

[345, 152, 377], `     Primitive Triple)(`

[336, 190, 386], `     a multiple of  `, [168, 95, 193]

[325, 228, 397], `     Primitive Triple)(`

[312, 266, 410], `     a multiple of  `, [156, 133, 205]

[297, 304, 425], `     Primitive Triple)(`

[280, 342, 442], `     a multiple of  `, [140, 171, 221]

[261, 380, 461], `     Primitive Triple)(`

[240, 418, 482], `     a multiple of  `, [120, 209, 241]

[217, 456, 505], `     Primitive Triple)(`

[192, 494, 530], `     a multiple of  `, [96, 247, 265]

[165, 532, 557], `     Primitive Triple)(`

[136, 570, 586], `     a multiple of  `, [68, 285, 293]

[105, 608, 617], `     Primitive Triple)(`

[72, 646, 650], `     a multiple of  `, [36, 323, 325]

[37, 684, 685], `     Primitive Triple)(`

[391, 120, 409], `     Primitive Triple)(`

[384, 160, 416], `     a multiple of  `, [12, 5, 13]

[375, 200, 425], `     a multiple of  `, [15, 8, 17]

[364, 240, 436], `     a multiple of  `, [91, 60, 109]

[351, 280, 449], `     Primitive Triple)(`

[336, 320, 464], `     a multiple of  `, [21, 20, 29]

[319, 360, 481], `     Primitive Triple)(`

[300, 400, 500], `     a multiple of  `, [3, 4, 5]

[279, 440, 521], `     Primitive Triple)(`

[256, 480, 544], `     a multiple of  `, [8, 15, 17]

[231, 520, 569], `     Primitive Triple)(`

[204, 560, 596], `     a multiple of  `, [51, 140, 149]

[175, 600, 625], `     a multiple of  `, [7, 24, 25]

[144, 640, 656], `     a multiple of  `, [9, 40, 41]

[111, 680, 689], `     Primitive Triple)(`

[76, 720, 724], `     a multiple of  `, [19, 180, 181]

[39, 760, 761], `     Primitive Triple)(`


 

  3. Triplos Pitagóricos Pares & Ímpares


[Seção opcional - Essa é um pouco mais avançada.]

Qualquer a, b, e c podem ser números pares ou ímpares? Vamos ver isso.

>    Pyth;

a^2+b^2 = c^2

       1. Podem todos três : a, b, e c serem ímpares?
        2. Podem  a e b serem ímpares, mas a par?
        3. Podem a e c serem ímpares, mas b par?
        4. Podem a e b serem pares, mas a ímpar?
        5. Podem a e c serem pares, mas b ímpar?
        6. Podem todos três : a, b, e c, serem pares?

Para analisar isso, vamos colocar algumas expressões para inteiros pares e ímpares. Nós veremos que vários dos termos ampliados tem fatores de  4. Se nós reduzirmos mod 4 - isto é dividir ambos os lados por  4 e procurarmos apenas no resto, veremos que a maioria, mas não todas as questões não são verdade.

>    odd1 := 2*i + 1;     odd2 := 2*j + 1;   odd3 := 2*k + 1;
even1 := 2*l  ;      even2 := 2*n;      even3 := 2*m;

odd1 := 2*i+1

odd2 := 2*j+1

odd3 := 2*k+1

even1 := 2*l

even2 := 2*n

even3 := 2*m


  

.......
1. Podem todos três: a, b, e c serem ímpares?   ............................................

>   

>    subs({a=odd1,b=odd2,c=odd3}, Pyth);
expand(%);
% mod 4;

(2*i+1)^2+(2*j+1)^2 = (2*k+1)^2

4*i^2+4*i+2+4*j^2+4*j = 4*k^2+4*k+1

2 = 1

não.

....... 2. Podem a e b serem ímpares, mas a par?    ............................................

 

>    subs({a=odd1,b=odd2,c=even1}, Pyth);
expand(%);
% mod 4;

(2*i+1)^2+(2*j+1)^2 = 4*l^2

4*i^2+4*i+2+4*j^2+4*j = 4*l^2

2 = 0

não


......
3. Podem a e c serem ímpares, mas b par?      ............................................

>    subs({a=odd1,b=even2,c=odd3}, Pyth);
expand(%);
% mod 4;

(2*i+1)^2+4*n^2 = (2*k+1)^2

4*i^2+4*i+1+4*n^2 = 4*k^2+4*k+1

1 = 1

sim!

.......
4. Podem  a e b serem pares, mas c ímpar?    ............................................

>    subs({a=even1,b=even2,c=odd1}, Pyth);
expand(%);
% mod 4;

4*l^2+4*n^2 = (2*i+1)^2

4*l^2+4*n^2 = 4*i^2+4*i+1

0 = 1

não.
.......
5. Podem a e c serem pares, mas b ímpar?      ............................................

>    subs({a=even1,b=odd2,c=even3}, Pyth);
expand(%);
% mod 4;

4*l^2+(2*j+1)^2 = 4*m^2

4*l^2+4*j^2+4*j+1 = 4*m^2

1 = 0

não.
.......
5. Podem a, b e c todos serem pares?      ............................................

>    subs({a=even1,b=even2,c=even3}, Pyth);
expand(%);
% mod 4;

4*l^2+4*n^2 = 4*m^2

4*l^2+4*n^2 = 4*m^2

0 = 0

sim!

A menos que todos sejam pares, este deve ser o caso que um cateto é par e outro é ímpar, e a hipotenusa é ímpar. Se todos os três números são pares  - nesse caso nós podemos dividir cada número por dois.

 

  4. Gráficos de Triplos Pitagóricos


Como iria ser se nós desenhássemos um diagrama de todos os triângulos triplos pitagóricos até um certo tamanho no mesmo gráfico? Existiria uma razão para isso?

>    PythTripPlot(4);

`Some Pythagorean Triples :`

` `

[Maple Plot]


Você pode distinguir triplos primitivos de triplos não primitivos? Esse gráfico elimina as duplicatas, por exemplo, apenas um de  (3,4,5) e (4,3,5) é plotado.

>    PythTripPlot(8);

`Some Pythagorean Triples :`

` `

[Maple Plot]

>    PythTripPlot(12);

`Some Pythagorean Triples :`

` `

[Maple Plot]


É interessante que esses triângulos pareçam algo uniformemente distribuido, não é? Esse diagrama fica crescentemente desordenadoporque nós desenhamos muitos triângulos. Se nós apenas desenhássemos os vértices superiores (a,b) do triângulo retângulo com lados a, b, e c (para triângulos retângulos de triplos pitagóricos), com o que isso irá parecer? Existirá algum padrão?

>    PythPointPlot(12);

`Pythagorean Triple Vertices :`

` `

[Maple Plot]

>    PythPointPlot(20);

`Pythagorean Triple Vertices :`

` `

[Maple Plot]

>    PythPointPlot(40);

`Pythagorean Triple Vertices :`

` `

[Maple Plot]

>    PythPointPlot(50);

`Pythagorean Triple Vertices :`

` `

[Maple Plot]


Esses plots incluem triplos primitivos e não primitivos. E se nós limitássesmos o diagrama para triplos primitivos?

>    PythPrimPointPlot(12);

`Primitive Pythagorean Triple Vertices :`

` `

[Maple Plot]

>    PythPrimPointPlot(36);

`Primitive Pythagorean Triple Vertices :`

` `

[Maple Plot]

>    PythPrimPointPlot(50);

`Primitive Pythagorean Triple Vertices :`

` `

[Maple Plot]

>